home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / libraries / din.lha / Din / Include / clib / din_protos.h
C/C++ Source or Header  |  1994-11-23  |  1KB  |  47 lines

  1. #ifndef  CLIB_DIN_PROTOS_H
  2. #define  CLIB_DIN_PROTOS_H
  3. /*
  4. **  $Filename: clib/din_protos.h $
  5. **  $Release: 1.0 revision 3 $
  6. **  $Revision: 3 $
  7. **  $Date: 10 Nov 90 $
  8. **
  9. **    C prototypes.
  10. **
  11. **  © Copyright 1990 Jorrit Tyberghein.
  12. **    All Rights Reserved
  13. */
  14.  
  15. /* "din.library" */
  16.  
  17. #ifndef  EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20.  
  21. #ifndef  LIBRARIES_DIN_H
  22. #include <libraries/din.h>
  23. #endif
  24.  
  25. ULONG NotifyDinLinks (struct DinObject *dob, ULONG Flags);
  26. void ResetDinLinkFlags (struct DinLink *dl);
  27. struct DinObject *MakeDinObject (char *Name, UWORD Type, ULONG Flags, APTR po, ULONG Size);
  28. BOOL EnableDinObject (struct DinObject *dob);
  29. BOOL DisableDinObject (struct DinObject *dob);
  30. BOOL PropagateDinObject (struct DinObject *dob, struct Task *task);
  31. BOOL RemoveDinObject (struct DinObject *dob);
  32. BOOL LockDinObject (struct DinObject *dob);
  33. BOOL UnlockDinObject (struct DinObject *dob);
  34. struct DinObject *FindDinObject (char *Name);
  35. struct DinLink *MakeDinLink (struct DinObject *dob, char *Name);
  36. void RemoveDinLink (struct DinLink *dl);
  37. BOOL ReadLockDinObject (struct DinObject *dob);
  38. void ReadUnlockDinObject (struct DinObject *dob);
  39. BOOL WriteLockDinObject (struct DinObject *dob);
  40. void WriteUnlockDinObject (struct DinObject *dob);
  41. void LockDinBase (void);
  42. void UnlockDinBase (void);
  43. struct InfoDinObject *InfoDinObject (struct DinObject *dob);
  44. void FreeInfoDinObject (struct InfoDinObject *ido);
  45.  
  46. #endif   /* CLIB_DIN_PROTOS_H */
  47.